home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Utilities
/
Programming
/
EnterAct 3.5
/
Drag_on Modules
/
hAWK programs
/
$UppercaseAll
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-05-11
|
320 b
|
18 lines
|
[
TEXT/KEEN
]
#Change all letters of each word (field) to uppercase
BEGIN {u = "abcdefghijklmnopqrstuvwxyz"
U = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
{
out = ""
n = length($0);
for (i = 1; i <= n; ++i)
{
if (ind = index(u, substr($0, i, 1)))
out = out substr(U, ind, 1);
else
out = out substr($0, i, 1)
}
print out
}